3 examples for git push

{{ score }}
  # delete a remote branch
git push origin :feature/cool-thing

# alternatively
git push origin --delete feature/cool-thing
        
{{ score }}
  # Push a branch 
git push origin myCoolLocalBranch
        
{{ score }}
  # Push to a remote branch with a different name than your local branch 
git push origin local-branch-name:remote-branch-name